home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-236.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  127 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12502);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2004-0523");
  13.  
  14.  name["english"] = "RHSA-2004-236: krb";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated Kerberos 5 (krb5) packages which correct buffer overflows in the
  21.   krb5_aname_to_localname function are now available.
  22.  
  23.   Kerberos is a network authentication system.
  24.  
  25.   Bugs have been fixed in the krb5_aname_to_localname library function.
  26.   Specifically, buffer overflows were possible for all Kerberos versions up
  27.   to and including 1.3.3. The krb5_aname_to_localname function translates a
  28.   Kerberos principal name to a local account name, typically a UNIX username.
  29.   This function is frequently used when performing authorization checks.
  30.  
  31.   If configured with mappings from particular Kerberos principals to
  32.   particular UNIX user names, certain functions called by
  33.   krb5_aname_to_localname will not properly check the lengths of buffers
  34.   used to store portions of the principal name. If configured to map
  35.   principals to user names using rules, krb5_aname_to_localname would
  36.   consistently write one byte past the end of a buffer allocated from the
  37.   heap. The Common Vulnerabilities and Exposures project (cve.mitre.org) has
  38.   assigned the name CAN-2004-0523 to this issue.
  39.  
  40.   Only configurations which enable the explicit mapping or rules-based
  41.   mapping functionality of krb5_aname_to_localname() are vulnerable.
  42.   These configurations are not the default.
  43.  
  44.   Users of Kerberos are advised to upgrade to these erratum packages which
  45.   contain backported security patches to correct these issues.
  46.  
  47.  
  48.  
  49.  
  50. Solution : http://rhn.redhat.com/errata/RHSA-2004-236.html
  51. Risk factor : High';
  52.  
  53.  script_description(english:desc["english"]);
  54.  
  55.  summary["english"] = "Check for the version of the krb packages";
  56.  script_summary(english:summary["english"]);
  57.  
  58.  script_category(ACT_GATHER_INFO);
  59.  
  60.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  61.  family["english"] = "Red Hat Local Security Checks";
  62.  script_family(english:family["english"]);
  63.  
  64.  script_dependencies("ssh_get_info.nasl");
  65.  
  66.  script_require_keys("Host/RedHat/rpm-list");
  67.  exit(0);
  68. }
  69.  
  70. include("rpm.inc");
  71. if ( rpm_check( reference:"krb5-devel-1.2.2-27", release:"RHEL2.1") )
  72. {
  73.  security_hole(0);
  74.  exit(0);
  75. }
  76. if ( rpm_check( reference:"krb5-libs-1.2.2-27", release:"RHEL2.1") )
  77. {
  78.  security_hole(0);
  79.  exit(0);
  80. }
  81. if ( rpm_check( reference:"krb5-server-1.2.2-27", release:"RHEL2.1") )
  82. {
  83.  security_hole(0);
  84.  exit(0);
  85. }
  86. if ( rpm_check( reference:"krb5-workstation-1.2.2-27", release:"RHEL2.1") )
  87. {
  88.  security_hole(0);
  89.  exit(0);
  90. }
  91. if ( rpm_check( reference:"krb5-devel-1.2.7-24", release:"RHEL3") )
  92. {
  93.  security_hole(0);
  94.  exit(0);
  95. }
  96. if ( rpm_check( reference:"krb5-libs-1.2.7-24", release:"RHEL3") )
  97. {
  98.  security_hole(0);
  99.  exit(0);
  100. }
  101. if ( rpm_check( reference:"krb5-server-1.2.7-24", release:"RHEL3") )
  102. {
  103.  security_hole(0);
  104.  exit(0);
  105. }
  106. if ( rpm_check( reference:"krb5-workstation-1.2.7-24", release:"RHEL3") )
  107. {
  108.  security_hole(0);
  109.  exit(0);
  110. }
  111. if ( rpm_check( reference:"krb5-libs-1.2.7-24", release:"RHEL3") )
  112. {
  113.  security_hole(0);
  114.  exit(0);
  115. }
  116.  
  117. if ( rpm_exists(rpm:"krb-", release:"RHEL2.1") )
  118. {
  119.  set_kb_item(name:"CAN-2004-0523", value:TRUE);
  120. }
  121. if ( rpm_exists(rpm:"krb-", release:"RHEL3") )
  122. {
  123.  set_kb_item(name:"CAN-2004-0523", value:TRUE);
  124. }
  125.  
  126. set_kb_item(name:"RHSA-2004-236", value:TRUE);
  127.